home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / zendisk2 / lst12-1.asm < prev    next >
Assembly Source File  |  1990-02-15  |  252b  |  14 lines

  1. ;
  2. ; *** Listing 12-1 ***
  3. ;
  4. ; Measures the performance of JMP.
  5. ;
  6.     call    ZTimerOn
  7.     rept    1000
  8.     jmp    short $+2    ;we'll do a short jump,
  9.                 ; since the next instruction
  10.                 ; can be reached with a
  11.                 ; 1-byte displacement
  12.     endm
  13.     call    ZTimerOff
  14.